/* Allgemeine Formatierung */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Header & Hero-Bereich */
header {
  height: 100vh;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: black;
}
.hero p{
  color: grey;
  font-size: 15px;
  margin-bottom: 15px;

}

.cta-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #40ff39;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
  margin-bottom: 20px;
}

.cta-button:hover {
  background-color: #ff5500;
}

/* Navigation */
nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 15px;
  background: rgba(0, 0, 0, 0.7);
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ff7e39;
}

/* Abschnitte */
.section {
  padding: 50px 20px;
  text-align: center;
}

/* Bilder */
.responsive-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 20px;
}

/* Karten */
.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 300px;
  transition: transform 0.3s;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  padding: 10px;
  font-size: 1.3rem;
}

/* Reisetipps */
.tips-list {
  list-style-type: none;
  max-width: 600px;
  margin: auto;
  padding: 20px;
  text-align: left;
}

/* Footer */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 30px;
}

footer input, footer textarea, footer button {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
}

footer button {
  background-color: #ff7e39;
  color: white;
  cursor: pointer;
}

footer button:hover {
  background-color: #ff5500;
}
